home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
398
/
398.xpi
/
chrome
/
forecastfox.jar
/
content
/
options
/
search.xul
< prev
Wrap
Extensible Markup Language
|
2010-02-04
|
3KB
|
61 lines
<?xml version="1.0"?>
<!--****************************************************************************
Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
***************************************************************************-->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://forecastfox/content/bindings.css" type="text/css"?>
<?xml-stylesheet href="chrome://forecastfox/skin/forecastfox.css" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://forecastfox/locale/forecastfox.dtd">
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="ff-search"
windowtype="forecastfox:search"
persist="screenX, screenY"
onload="searchLoad(); sizeToContent();"
onunload="searchUnload();"
title="&ff.search.title;">
<script type="application/x-javascript" src="chrome://forecastfox/content/utilities/helpers.js"/>
<script type="application/x-javascript" src="chrome://forecastfox/content/options/search.js"/>
<stringbundleset>
<stringbundle id="ff-bundle-search" src="chrome://forecastfox/locale/forecastfox.properties"/>
</stringbundleset>
<keyset id="ff-keys">
<key keycode="VK_ESCAPE" oncommand="window.close();"/>
</keyset>
<ffheader title="&ff.search.description;"/>
<vbox id="ff-search-content" class="ff-content" flex="1">
<hbox align="center" pack="end">
<textbox id="ff-text-search" onkeypress="if (event.keyCode == event.DOM_VK_RETURN) gSearch.run();" onfocus="this.select()" flex="1"/>
<button id="ff-btn-search" class="ff-button" label="&ff.search.label;" oncommand="gSearch.run();"/>
</hbox>
<separator class="thin"/>
<tree enableColumnDrag="true" id="ff-tree-results" rows="7" flex="1">
<treecols id="ff-tree-columns">
<treecol id="ff-col-city" label="&ff.search.column.city;" flex="4" primary="true" persist="hidden width ordinal" onclick="if (event.button == 0) gSearch.setSort('city');"/>
<splitter class="tree-splitter"/>
<treecol id="ff-col-state" label="&ff.search.column.state;" flex="2" persist="hidden width ordinal" onclick="if (event.button == 0) gSearch.setSort('state');"/>
<splitter class="tree-splitter"/>
<treecol id="ff-col-id" label="&ff.search.column.id;" flex="1" hidden="true" persist="hidden width ordinal" onclick="if (event.button == 0) gSearch.setSort('id');"/>
</treecols>
<treechildren id="ff-items-results" ondblclick="gSearch.accept(false);" flex="1"/>
</tree>
</vbox>
<hbox id="ff-search-footer" class="ff-footer" align="center">
<label value="&ff.providedby;"/>
<fflink label="&acw.site;" tooltiptext="&acw.tooltip;" href="&acw.main;" partner="true" from="dialog"/>
<spacer class="ff-btnspacer" flex="1"/>
<button label="&ff.ok;" class="ff-button" default="true" oncommand="gSearch.accept(true);"/>
<button label="&ff.cancel;" class="ff-button" oncommand="window.close();"/>
</hbox>
</window>